home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / filesyst / dosfs / dosfsck_.z / dosfsck_ / dosfsck / check.h < prev    next >
C/C++ Source or Header  |  1993-05-07  |  353b  |  16 lines

  1. /* check.h  -  Check and repair a PC/MS-DOS file system */
  2.  
  3. /* Written 1993 by Werner Almesberger */
  4.  
  5.  
  6. #ifndef _CHECK_H
  7. #define _CHECK_H
  8.  
  9. int scan_root(DOS_FS *fs);
  10.  
  11. /* Scans the root directory and recurses into all subdirectories. See check.c
  12.    for all the details. Returns a non-zero integer if the file system has to
  13.    be checked again. */
  14.  
  15. #endif
  16.